home *** CD-ROM | disk | FTP | other *** search
- Shader()
- {// >=gf 3
- SurfaceID(SRFTYPE)
- NoLightmaps()
- sortweight("blended_alphatest")
- Shaderquality(3)
- Cull("cw")
- Pass()
- {
- Pixelshader("CO.psh")
-
- !include("__Tex1.mtt")
- !include("__Clouds.mtt")
-
- AlphaFunc( "gequal", 128 )
- }
- }
-
- Shader()
- {// >=gf 3
- SurfaceID(SRFTYPE)
- NoLightmaps()
- sortweight("blended_alphatest")
- Shaderquality(1)
- Cull("cw")
- Pass()
- {
- Pixelshader("O.psh")
-
- !include("__Tex1.mtt")
-
- AlphaFunc( "gequal", 128 )
- }
- }
-
- Shader()
- {//gf2
- SurfaceID(SRFTYPE)
- NoLightmaps()
- sortweight("blended_alphatest")
- Cull("cw")
- Pass()
- {
-
- tmu()
- {
- ColorOp("mul", "tfactor", "tfactor_a", "current")
-
- }
-
- tmu()
- {
- Texture()
- {
- Mapchannel(0)
- Image(TEXTURE1)
- !include(TEX1OPTIONSFILE)
- }
- ColorOp("mul", "texture", "current", "current")
- alphaop("mul2", "texture", "diffuse", "current")
- }
-
- Tfactor(%daycolor_r, %daycolor_g, %daycolor_b, %ambient_r)
-
- AlphaFunc( "gequal", 128 )
- }
- }
-